home *** CD-ROM | disk | FTP | other *** search
/ Aminet 30 / Aminet 30 (1999)(Schatztruhe)[!][Apr 1999].iso / Aminet / util / batch / Boot-Startup.lha / Boot-startup next >
AmigaDOS Script File  |  1999-01-01  |  2KB  |  93 lines

  1. .key dummy
  2. .bra {
  3. .ket }
  4. requestchoice >env:rq{$$} "Startup Choice" "Click on the option of your choice*n*n1,2 & 3 can't be loaded after WorkBench" "Banshee" "PGA Golf" "Pinball" "CD Boot" "LionKing" "NVX" "WorkBench"
  5. if $rq{$$} EQ "0"
  6.     skip out
  7. endif
  8. if $rq{$$} EQ "1"
  9.     skip ban
  10. endif
  11. if $rq{$$} EQ "2"
  12.     skip pga
  13. endif
  14. if $rq{$$} EQ "3"
  15.     skip Ball
  16. endif
  17. if $rq{$$} EQ "4"
  18.     skip CD
  19. endif
  20. if $rq{$$} EQ "5"
  21.     skip lionking
  22. endif
  23. if $rq{$$} EQ "6"
  24.     skip nvx
  25. endif
  26. lab ban
  27. work:
  28. games
  29. banshee
  30. execute bansheehd
  31. skip out
  32. lab pga
  33. ;START OF PGA EUROPEAN GOLF ASSIGNS
  34. assign glf1: WORK:GAMES/pgagolf
  35. assign glf2: WORK:GAMES/pgagolf
  36. IF EXISTS s:user-startup
  37.   Execute s:user-startup
  38. EndIF
  39. ;END OF PGA EUROPEAN GOLF ASSIGNS
  40. glf1:
  41. golf
  42. skip out
  43. lab Ball
  44. work:
  45. games
  46. mania
  47. mania
  48. skip out
  49. lab lionking
  50. work:
  51. games
  52. cd "lion king"
  53. run "lion king"
  54. endcli
  55. lab nvx
  56. system3.1:wbstartup/cyberpatcher
  57. c:setpatch quiet
  58. work:
  59. nvxpulse
  60. pulse.exe
  61. skip out
  62. lab CD
  63. mount CD0:
  64. requestchoice >env:cdrom{$$} "CD Boot" "Click on option of your choice" "RoadKill" "CD32 Boot" "Cancel"
  65. if $cdrom{$$} EQ "0"
  66.     execute s:boot-startup
  67.     unsetenv cdrom{$$}
  68.     unsetenv rq{$$}
  69.     endcli
  70. endif
  71. if $cdrom{$$} EQ "1"
  72.     skip roadkill
  73. endif
  74. if $cdrom{$$} EQ "2"
  75.     skip cd32
  76. endif
  77. lab roadkill
  78. requestchoice >env:ok{$$} "RoadKill" "Check RoadKill Disk is in CD-Rom drive*n*nClick OK when ready to play" "OK"
  79. if $ok{$$} EQ "0"
  80.     if exists roadkill:
  81.         skip cd32
  82.     endif
  83. endif
  84. skip cd32
  85. lab cd32
  86. system3.1:wbstartup/cyberpatcher
  87. system3.1:idefix/cd32/cd32  
  88. skip out
  89. lab out
  90. unsetenv rq{$$}
  91. c:setpatch QUIET
  92.  
  93.